home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / xobbs.arc / xotime.c < prev    next >
C/C++ Source or Header  |  1989-05-03  |  397b  |  21 lines

  1. /* XOTIME.C Time retrieval routines for XOBBS. Jim Durham, W2XO 10-24-88 */
  2. /* Version 1.0 */
  3. /* Code released to the amateur radio community */
  4.  
  5. #include "xobbs.h"
  6.  
  7. char *gettim()
  8. {
  9.  
  10. long long_time;
  11. static char timstrng[24];
  12.  
  13.     time(&long_time);
  14.     newtime=gmtime(&long_time);
  15.  
  16.     strncpy(timstrng,asctime(newtime),20);
  17.     timstrng[19]=0;
  18.     strcat(timstrng,"Z");
  19.     return(timstrng);
  20. }
  21.